home *** CD-ROM | disk | FTP | other *** search
- {===EZDSLOPT.INC======================================================
-
- Fixed compiler options for the EZ Delphi Structures Library.
- DO NOT MODIFY ANYTHING IN THIS FILE.
-
- EZDSLOPT.INC is Copyright (c) 1995-1998 by Julian M. Bucknall
-
- VERSION HISTORY
- 18Mar98 JMB 3.00 Initial release (BETA TEST)
- {=====================================================================}
-
- { Check for Delphi }
- {$IFNDEF VER80} {$IFNDEF VER90} {$IFNDEF VER100}
- !! Error - EZDSL is for Delphi 1.0, 2.0 or 3.0 *only*
- {$ENDIF} {$ENDIF} {$ENDIF}
-
- {------Fixed compiler options throughout EZDSL------------------------}
-
- {---Delphi 1.0 specific---}
- {$IFDEF VER80}
- {$B- Short-circuit boolean expressions }
- {$G+ 80286+ type instructions }
- {$I+ I/O checking via exceptions }
- {$V- Disable var string checking }
- {$W- No Windows realmode stack frame }
- {$X+ Enable extended syntax }
- {$IFDEF DEBUG}
- {$D+,L+ Enable debug information }
- {$ELSE}
- {$D-,L- Disable debug information }
- {$ENDIF}
- {$ENDIF}
-
- {---Delphi 2.0 specific---}
- {$IFDEF VER90}
- {$A+ Use DWORD alignment whereever possible }
- {$B- Short-circuit boolean expressions }
- {$I+ I/O checking via exceptions }
- {$V- Disable var string checking }
- {$W- No Windows realmode stack frame }
- {$X+ Enable extended syntax }
- {$IFDEF DEBUG}
- {$D+,L+ Enable debug information }
- {$ELSE}
- {$D-,L- Disable debug information }
- {$ENDIF}
- {$ENDIF}
-
- {---Delphi 3.0 specific---}
- {$IFDEF VER100}
- {$A+ Use DWORD alignment whereever possible }
- {$B- Short-circuit boolean expressions }
- {$I+ I/O checking via exceptions }
- {$V- Disable var string checking }
- {$W- No Windows realmode stack frame }
- {$X+ Enable extended syntax }
- {$IFDEF DEBUG}
- {$D+,L+ Enable debug information }
- {$ELSE}
- {$D-,L- Disable debug information }
- {$ENDIF}
- {$ENDIF}
-
- {---Hints and Warnings for Delphi 2/3}
- {$IFNDEF VER80}
- {$WARNINGS ON}
- {$HINTS ON}
- {$ENDIF}
- {---------------------------------------------------------------------}
-
-